home *** CD-ROM | disk | FTP | other *** search
/ C & C++ Multimedia Cyber Classroom / C and C++ Multimedia Cyber Classroom (Prentice Hall) (1998).iso / src / fig19_06.jar / Ch19 / Fig19_06 / fig19_06.cpp
C/C++ Source or Header  |  1997-11-10  |  1KB  |  41 lines

  1. // Fig. 19.6: fig19_06.cpp
  2. // Demonstrating the string find functions
  3. #include <iostream>
  4. #include <string>
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9.    // compiler concatenates all parts into one string literal
  10.    string s( "The values in any left subtree"
  11.              "\nare less than the value in the"
  12.              "\nparent node and the values in"
  13.              "\nany right subtree are greater"
  14.              "\nthan the value in the parent node" );
  15.    
  16.    // find "subtree" at locations 23 and 102
  17.    cout << "Original string:\n" << s 
  18.         << "\n\n(find) \"subtree\" was found at: " 
  19.         << s.find( "subtree" ) 
  20.         << "\n(rfind) \"subtree\" was found at: " 
  21.         << s.rfind( "subtree" );
  22.  
  23.    // find 'p' in parent at locations 62 and 144
  24.    cout << "\n(find_first_of) character from \"qpxz\" at: " 
  25.         << s.find_first_of( "qpxz" ) 
  26.         << "\n(find_last_of) character from \"qpxz\" at: " 
  27.         << s.find_last_of( "qpxz" );
  28.    
  29.    // find 'b' at location 25 
  30.    cout << "\n(find_first_not_of) first character not\n"
  31.         << "   contained in \"heTv lusinodrpayft\": " 
  32.         << s.find_first_not_of( "heTv lusinodrpayft" );
  33.    
  34.    // find '\n' at location 121
  35.    cout << "\n(find_last_not_of) first character not\n"
  36.         << "   contained in \"heTv lusinodrpayft\": " 
  37.         << s.find_last_not_of( "heTv lusinodrpayft" ) << endl;
  38.  
  39.    return 0;
  40. }
  41.